
/*弱密码弹窗样式*/
.updatemask {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .7);
    z-index: 101;
    display: none;
}
.updatemaskshow {
    display: block;
}
.updateclose{
    width:36px;
    height:36px;
    background:url(../images/login/close.png) no-repeat center center;
    position: absolute;
    right: -36px;
    top: -30px;
    cursor: pointer;
}
.updatecontent {
    position: fixed;
    width: 850px;
    height: 465px;
    left: 50%;
    top: 50%;
    margin-top: -232px;
    margin-left: -425px;
    border-radius: 4px;
    background: #fff;
}
.updatetitle {
    font-size: 16px;
    padding-left: 20px;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid #ccc;
}
.updatetip {
    color: red;
    font-size: 14px;
    width: 800px;
    margin: 30px auto;
}
.label {
    display: inline-block;
    width: 190px;
    text-align: right;
}
.label label {
    position: relative;
}
.label label::before {
    content: '*';
    color: red;
    top: 1px;
    left: -10px;
    position: absolute;
    font-size: 14px;
}
.item .input {
    display: inline-block;
}
.item .lg-srbox {
    width: 520px;
    margin-bottom: 0;
}
.item .input .input-err {
    border: 1px solid rgb(204, 7, 0);
}
.updateitem {
    margin-bottom: 14px;
    height: 64px;
}
.updatebtns {
    text-align: right;
    padding-right: 40px;
    padding-top: 16px;
    border-top: 1px solid #ccc;
    margin-top: 30px;
}
.updatebtns span {
    color: rgb(204, 7, 0);
    border: 1px solid rgb(204, 7, 0);
    border-radius: 4px;
    overflow: hidden;
    display: inline-block;
    width: 60px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
}
.updatecancel {
    margin-right: 12px;
}
.error {
    color: rgb(204, 7, 0);
    width: 510px;
    margin-top: 4px;
    margin-bottom: 14px;
    margin-left: 196px;
}